home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / network / if-up.d / avahi-autoipd next >
Text File  |  2009-10-18  |  892b  |  36 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Description:      Add routes to allow communication between machines which
  6. #                   only have an IPv4LL address assigned and those which only
  7. #                   have a routable address assigned.
  8. #
  9. #                   See http://developer.apple.com/qa/qa2004/qa1357.html for
  10. #                   more information.
  11.  
  12. [ "$IFACE" != "lo" ] || exit 0
  13. case "$ADDRFAM" in
  14.   inet|NetworkManager) ;;
  15.   *) exit 0
  16. esac
  17.  
  18. case "$METHOD" in
  19.     static|dhcp|NetworkManager) ;;
  20.     *) exit 0
  21. esac
  22.  
  23.  
  24. if [ -x /bin/ip ]; then
  25.     # route already present?
  26.     ip route show | grep -q '^169.254.0.0/16[[:space:]]' && exit 0
  27.  
  28.     /bin/ip route add 169.254.0.0/16 dev $IFACE metric 1000 scope link
  29. elif [ -x /sbin/route ]; then
  30.     # route already present?
  31.     /sbin/route -n | egrep -q "^169.254.0.0[[:space:]]" && exit 0
  32.  
  33.     /sbin/route add -net 169.254.0.0 netmask 255.255.0.0 dev $IFACE metric 1000
  34. fi
  35.  
  36.